home *** CD-ROM | disk | FTP | other *** search
/ Champak 66 / Vol 66.iso / games / doodle_d.swf / scripts / DefineButton2_154 / BUTTONCONDACTION on(release).as
Text File  |  2013-04-24  |  225b  |  13 lines

  1. on(release){
  2.    if(points >= speedPrice2 && speedLimit < 8)
  3.    {
  4.       speedLimit++;
  5.       points -= speedPrice2;
  6.       speedPrice2 *= 2;
  7.       if(speedLimit == 8)
  8.       {
  9.          speedPrice2 = 0;
  10.       }
  11.    }
  12. }
  13.